-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix uppercase model preset "alphaFold2-ptm" #175
Conversation
|
workflows/colabfold.nf
Outdated
@@ -91,7 +91,7 @@ workflow COLABFOLD { | |||
// | |||
// MODULE: Run mmseqs | |||
// | |||
if (params.colabfold_model_preset != 'AlphaFold2-ptm') { | |||
if (params.colabfold_model_preset != 'alphaFold2-ptm') { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we also add here:
&& params.colabfold_model_preset != 'alphafold2'
as in the webserver mode? Or is it different for some reason?
Which cases does the module MULTIFASTA_TO_CSV need to run for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I really thought it was different but discussing with @athbaltzis it seems to be just a bug since alphafold2
is not used so often, now is fixed. Good spot! 😄
workflows/colabfold.nf
Outdated
@@ -91,7 +91,7 @@ workflow COLABFOLD { | |||
// | |||
// MODULE: Run mmseqs | |||
// | |||
if (params.colabfold_model_preset != 'AlphaFold2-ptm') { | |||
if (params.colabfold_model_preset != 'alphaFold2-ptm') { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be alphafold2_ptm, all lowercase, with underscore for the latest version I think.
PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).CHANGELOG.md
is updated.